home *** CD-ROM | disk | FTP | other *** search
/ Champak 43 / Vol 43.iso / games / superdog.swf / scripts / DefineSprite_1838 / frame_10 / DoAction.as
Encoding:
Text File  |  2007-06-25  |  303 b   |  19 lines

  1. function scoreplus3()
  2. {
  3.    if(fsn < fs)
  4.    {
  5.       fsn += 10;
  6.    }
  7.    if(fsn >= fs)
  8.    {
  9.       fsn = fs;
  10.       clearInterval(intervalID3);
  11.       _root.lc.play();
  12.    }
  13. }
  14. stop();
  15. fsn = 0;
  16. fs = _parent.mainGame.score + tb + 1000;
  17. var intervalID3;
  18. intervalID3 = setInterval(scoreplus3,8);
  19.